home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Nebula 2
/
Nebula Two.iso
/
SourceCode
/
Tutorial
/
Cookbook
/
28.Motion
/
drawObjects.psw
< prev
next >
Wrap
Text File
|
1995-06-12
|
272b
|
19 lines
defineps doBall(float x,y,width)
x y width 0.0 360.0 arc fill
endps
defineps drawPaddle(float angle, width)
gsave
40 40 translate
angle neg rotate
newpath
-45 0 moveto
90 0 rlineto
0 width neg rlineto
-90 0 rlineto
closepath
fill
grestore
endps